home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Container / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.4 KB  |  65 lines  |  [TEXT/MPS ]

  1. //    File:        Menus.fr
  2. //
  3. //    Contains:    Resources for ODFContainer
  4. //
  5. //    Written by:    Mary Boetcher
  6. //
  7. //    Copyright:    © 1993-1996 by Apple Computer, Inc., all rights reserved.
  8.  
  9. #ifndef FWRESFIL_K
  10. #include "FWResFil.k"
  11. #endif
  12.  
  13. #ifndef DEFINES_K
  14. #include "Defines.k"
  15. #endif
  16.  
  17. #ifndef FWMENUS_FR
  18. #include "FWMenus.fr"
  19. #endif
  20.  
  21. //----------------------------------------------------------------------------
  22. //    Menus
  23. //----------------------------------------------------------------------------
  24.  
  25. resource FW_RMenuBar(kMenuBar)
  26. {
  27.     {
  28.         FW_RPullDownMenu
  29.         (
  30.             "Container"
  31.             {
  32.                 FW_RSubMenuItem
  33.                 (
  34.                     "Embed As"
  35.                     {
  36.                         FW_RTextItem(cAsFrame,        FW_kNoKeyEquivalent, "Frame"),
  37.                         FW_RTextItem(cAsLargeIcon,    FW_kNoKeyEquivalent, "Large Icon"),
  38.                         FW_RTextItem(cAsSmallIcon,    FW_kNoKeyEquivalent, "Small Icon"),
  39.                         FW_RTextItem(cAsThumbnail,    FW_kNoKeyEquivalent, "Thumbnail")
  40.                     }
  41.                 ),
  42.                 FW_RSubMenuItem
  43.                 (
  44.                     "Zoom"
  45.                     {
  46.                         FW_RTextItem(cZoom50,    FW_kNoKeyEquivalent, "50%"),
  47.                         FW_RTextItem(cZoom100,    FW_kNoKeyEquivalent, "100%"),
  48.                         FW_RTextItem(cZoom200,    FW_kNoKeyEquivalent, "200%")
  49.                     }
  50.                 )
  51.             }
  52.         )
  53.     }
  54. };
  55.  
  56. //----------------------------------------------------------------------------
  57. //    Strings
  58. //----------------------------------------------------------------------------
  59.  
  60. resource FW_kMULTISTRING (kUndoStrings)
  61. {
  62.     kUndoResizeMsg,         "Undo Resize";
  63.     kRedoResizeMsg,         "Redo Resize";
  64. }
  65.